github.com/google/go-cmp/cmp.pathStep.vy (field)

17 uses

	github.com/google/go-cmp/cmp (current package)
		compare.go#L334: 	if step.vx, step.vy = got, want; !s.statelessCompare(step).Equal() {
		compare.go#L337: 		if step.vx, step.vy = want, want; !s.statelessCompare(step).Equal() {
		compare.go#L382: 		step.vy = vy.Field(i)
		compare.go#L445: 			step.vy, step.ykey = vy.Index(iy), iy
		compare.go#L447: 			step.vy, step.ykey = reflect.Value{}, -1
		compare.go#L526: 		step.vy = vy.MapIndex(k)
		compare.go#L528: 		if !step.vx.IsValid() && !step.vy.IsValid() {
		options.go#L324: 	step.vx, step.vy = vvx, vvy
		path.go#L155: 	vx, vy reflect.Value
		path.go#L159: func (ps pathStep) Values() (vx, vy reflect.Value) { return ps.vx, ps.vy }
		path.go#L190: 		return sf.vx, sf.vy // CanInterface reports true
		path.go#L199: 	return sf.vx, sf.vy // CanInterface reports false
		path.go#L219: func (si SliceIndex) Values() (vx, vy reflect.Value) { return si.vx, si.vy }
		path.go#L263: func (mi MapIndex) Values() (vx, vy reflect.Value) { return mi.vx, mi.vy }
		path.go#L276: func (in Indirect) Values() (vx, vy reflect.Value) { return in.vx, in.vy }
		path.go#L286: func (ta TypeAssertion) Values() (vx, vy reflect.Value) { return ta.vx, ta.vy }
		path.go#L297: func (tf Transform) Values() (vx, vy reflect.Value) { return tf.vx, tf.vy }